﻿/*类目*/
.menu{width:100%;margin-top:60px;margin-bottom:-10px;}
.menu ul{display:flex; justify-content: center}
.menu li a{position:relative;z-index:2;display: block;margin:0 10px 10px 10px;color:#191919;font-size:18px;border: 1px #e9e9e9 solid;overflow: hidden;padding: 10px 40px;border-radius: 6px; background: #f7f7f7;}
.menu li a:after{ content: ""; position: absolute;left:0;bottom:0;z-index:-1;width:100%;height:100%; background: #0c8de0;transition:transform .5s;transform: scale(0,1);transform-origin:right;}
.menu li:hover a,.menu li.active a{ color:#fff;border-color:#0c8de0 }
.menu li:hover a:after,.menu li.active a:after{transform: scale(1);transform-origin:left;}



/*产品列表*/
.proList {
	padding: 40px 0 80px;
}

.proList ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.proList ul span{
	text-align: center;
	display: block;
	width: 100%;
}
.proList ul li {
	width: calc(100% / 4);
	padding: 0 15px;
	margin-top: 30px;
}

.proList ul li .pic {
	background: #f0f0f0;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 75%;
}

.proList ul li .pic i {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: #0c8de0;
	text-align: center;
	color: #fff;
	font-size: 18px;
	opacity: 0;
}

.proList ul li .pic img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	mix-blend-mode: darken;
	transition: all 0.6s;
}

.proList ul li:hover .pic img {
	transform: scale(1.1);
}

.proList ul li .title h2 {
	padding: 10px;
	background: #ccc;
	font-size: 16px;
	font-family: "rajdhani-s";
	color: #172029;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}


.proList ul li:hover .pic i {
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
}

.proList ul li:hover .title h2 {
	color: #fff;
	background: #0c8de0;
}

.pro-list.hidden {
	display: none;
}

.proList .more {
	display: block;
	width: 260px;
	margin: 50px auto 0;
	height: 55px;
	color: #172029;
	background: #0c8de0;
	line-height: 55px;
	font-size: 18px;
	cursor: pointer;
	position: relative;
	z-index: 0;
	transition: all 0.4s;
}

.proList .more:before,
.proList .more:after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 0%;
	height: 50%;
	background: #172029;
	transition: all 0.4s;
}

.proList .more:before {
	left: 0;
	top: 0;
}

.proList .more:after {
	right: 0;
	bottom: 0;
}

.proList .more:hover {
	color: #0c8de0;
}

.proList .more:hover:before,
.proList .more:hover:after {
	width: 100%;
}


/*产品详情*/

.proDes {
	padding: 70px 0;
}

.proDes .container {
	display: flex;
	align-items: stretch;
	justify-content: center;
}

.proDes .left {
	width: 50%;
	padding-left: 6%;
	order: 2;
}

.proDes .left .title {
	padding-bottom: 20px;
	border-bottom: 1px solid #dbdbdb;
}

.proDes .left .title h2 {
	font-size: 42px;
	color: #172029;
	font-family: "oswald";
}

.proDes .left .title h4 {
	font-size: 18px;
	color: #999999;
	margin-top: 6px;
}

.proDes .left .title h4 span {
	color: #172029;
}

.proDes .left .describe {
	padding: 24px 0;
}

.proDes .left .describe span {
	color: #172029;
	font-family: "rajdhani-s";
	margin-bottom: 10px;
	display: block;
	font-size: 20px;
}

.proDes .left .describe p {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}

.proDes .left .conInfo {
	padding: 24px 0;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 30px;
}

.proDes .left .conInfo p {
	color: #999999;
	padding: 2px 0;
}

.proDes .left .conInfo p a {
	color: #172029;
	transition: all 0.2s;
}

.proDes .left .conInfo p a:hover {
	color: #0c8de0;
	text-decoration: underline;
}

.proDes .left .conBtn {
	display: flex;
	align-items: center;
}

.proDes .left .conBtn a {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0c8de0;
	width: calc((100% - 2px) / 3);
	line-height: 55px;
	cursor: pointer;
}

.proDes .left .conBtn a:nth-child(2) {
	margin: 0 1px;
}

.proDes .left .conBtn a i {
	margin-right: 10px;
	color: #fff;
}

.proDes .left .conBtn a span {
	color: #fff;
	transform: translateY(2px);
}

.proDes .left .conBtn a:hover {
	background: #172029;
}

.proDes .left .conBtn a:hover i,
.proDes .left .conBtn a:hover span {
	color: #fff;
}

.proDes .left .share a {
	font-size: 20px;
	line-height: 20px;
	margin-left: 2px;
}

.proDes .right {
	width: 50%;
	display: flex;
	justify-content: space-between;
	height: fit-content;
	position: relative;
	overflow: hidden;
}

.proDes .right .swiper-slide img {
	display: block;
	width: 100%;
}

.proDes .big_pic_container {
	position: relative;
	overflow: hidden;
	width: calc(100% - 100px);
	margin: 0;
}

.proDes .big_pic_container ul li {
	background: #f0f0f0;
	overflow: hidden;
}

.proDes .big_pic_container ul li img.imagezoom {
	display: block;
	width: 100%;
	mix-blend-mode: darken;
	height: 500px;
	object-fit: contain;
}

.proDes .small_pic_container {
	width: 90px;
	overflow: hidden;
	height: 500px;
	margin: 0;
	position: relative;
}

.proDes .small_pic_container ul {
	display: flex;
	flex-direction: column;
}

.proDes .small_pic_container .swiper-slide {
	width: 100% !important;
	height: auto !important;
	transition: all 0.3s;
	border: 2px solid #ccc;
	opacity: 0.6;
	cursor: pointer;
}

.proDes .small_pic_container .swiper-slide-thumb-active {
	opacity: 1;
	border-color: #0c8de0;
}

.proDes .right .swiper-button-prev,
.proDes .right .swiper-button-next {
	position: absolute;
	right: 0;
	width: 90px;
	z-index: 10;
	margin: 0;
	top: auto;
	bottom: auto;
	height: 40px;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.4s;
	opacity: 0;
	color: #fff;
}

.proDes .right .swiper-button-prev {
	top: -40px;
}

.proDes .right .swiper-button-next {
	bottom: -40px;
}

.proDes .right:hover .swiper-button-prev {
	top: 0;
	opacity: 1;
}

.proDes .right:hover .swiper-button-next {
	bottom: 0;
	opacity: 1;
}

.proDes .big_pic_container .swiper-pagination {
	width: auto;
	right: unset;
	left: unset;
	line-height: 1;
	display: none;
	bottom: 15px;
}
.proDes .big_pic_container .swiper-pagination span{
	margin: 0 10px;
	width: 10px;
	height: 10px;
	background: #172029;
}
.proDes .big_pic_container .swiper-pagination span.swiper-pagination-bullet-active{
	background: #0c8de0;
}
.proDetails {
	padding: 60px 0;
	background: #F0F0F0;
}

.proDetails .detailsTitle {
	border-bottom: 1px solid #dbdbdb;
	display: flex;
}

.proDetails .detailsTitle h3 {
	font-size: 24px;
	font-family: "rajdhani-s";
	color: #172029;
	padding-bottom: 10px;
	position: relative;
}

.proDetails .detailsTitle h3:before {
	content: "";
	width: 100%;
	height: 1px;
	background: #172029;
	position: absolute;
	left: 0;
	bottom: -1px;
}

.proDetails .detailsContent {
	padding: 30px 0;
	border-bottom: 1px solid #dbdbdb;
}

.proDetails .detailsContent table{
	border-collapse: collapse;
	margin-bottom:20px;
}

.proDetails .detailsContent .firstRow td{
	font-family: 'rajdhani-s';
	color: #172029;
	text-align: center !important;
	font-size:16px;
	background: #f5f5f5;

}
.proDetails .detailsContent table td{
	text-align: center;
	white-space: nowrap;
	border: 1px solid #ddd;
	padding: 8px 10px 5px;
	font-size: 14px;
	background: #fff;
	color: #172029;
}
.proDetails .detailsContent table tr td:last-child{

	white-space: normal !important;
}


.proDetails .keyword {
	margin: 30px 0 50px;
}

.proDetails .keyword span {
	color: #172029;
}

.proDetails .backPro {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	background: #0c8de0;
	line-height: 56px;
	margin: 40px auto 0px;
}
.proDetails .backPro:before{
	border-color: #0081c1 !important;
}

.proDetails .backPro i {
	color: #fff;
	font-size: 14px;
	margin-right: 8px;
}

.proDetails .backPro span {
	color: #fff;
	transform: translateY(1px);
	text-transform: uppercase;
}

.proDetails .backPro:hover i {
	margin-right: 16px;
}

.proInquiry {
	padding: 55px 0 80px;
	position: relative;
	z-index: 0;
	background: url(../images/hotNewsBg.jpg) no-repeat center;
	background-attachment: fixed;
	background-size: cover;
}

.proInquiry .title {
	font-size: 42px;
	font-family: "oswald";
	margin-bottom: 30px;
}

.proInquiry .inquiry span {
	color: #fff;
}

.proInquiry .inquiry input,
.proInquiry .inquiry textarea {
	border: none;
	background: #fff;
}

.proInquiry .inquiry dl dd {
	width: calc(100% / 3);
}

.proInquiry .inquiry dl dt {
	width: 240px;
}

.proInquiry .inquiry dl dt button:hover {
	background: #0c8de0;
	letter-spacing: 2px;
	color: #172029;
}
/*行业应用列表*/
.applicationBox{
	padding: 40px 0 70px;
}
.application-list ul{
	display: flex;
	margin: 0px -10px;
	flex-wrap: wrap;
}
.application-list li{
	width: calc(100% / 3);
	padding: 0px 10px;
	margin-bottom: 20px;
}
.application-list li a{
	border: 1px solid #f0f0f0;
	transition: all 0.5s;
	background: #f5f5f5;
	padding: 20px;
	display: block;
}
.application-list li .pic{
	overflow: hidden;
}
.application-list li .pic img{
	transition: all 0.5s;
}
.application-list li a:hover .pic img{
	transform: scale(1.1,1.1);
}
.application-list li h3{
	color: #333;
	font-size: 16px;
	text-align: center;
	transition: all 0.4s;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	padding: 0 10px;
	margin-top: 16px;
	font-family: sy-n;
	line-height: 16px;
}

.application-list li a:hover h3{
	color: #0c8de0;
}

/*新闻列表*/

.newsBox {
	padding: 40px 0 70px;
}

.news-list ul {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-between;
	margin: 0 -15px;
}

.news-list ul li {
	padding: 0 15px;
	width: calc(100% / 3);
	margin-top: 30px;
}

.news-list ul li a {
	display: block;
	height: 100%;
}

.news-list ul li a .pic {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.news-list ul li a .pic img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	transition: all 0.6s;
	height: 240px;
}

.news-list ul li a .date {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 12px 20px 9px;
	background: rgba(0, 0, 0, 0.5);
	transition: all 0.4s;
	color: #fff;
	font-size: 14px;
}

.news-list ul li a .content {
	padding: 20px;
	background: #f0f0f0;
	transition: all 0.4s;
}

.news-list ul li a .content h3 {
	font-size: 17px;
	color: #1a1a1a;
	font-family: roboto-m;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.news-list ul li a .content p {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	margin-top: 16px;
}

.news-list ul li:hover .date {
	background: rgba(235, 61, 0, 0.9);
}

.news-list ul li:hover a .pic img {
	transform: scale(1.1);
}

.news-list ul li:hover a .content {
	background: #FFFFFF;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.news-list ul li:hover a .content h3 {
	color: #0c8de0;
}


/*新闻详情*/

.newsDetails {
	padding: 60px 0 70px;
}

.news-xq .xq-title {
	font-size: 28px;
	font-family: "Roboto-m";
	color: #000;
}

.news-xq .xq-data {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 10px 0 20px;
}

.news-xq .xq-data li {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 20px;
}

.news-xq .content {
	border-top: 1px solid #dbdbdb;
	padding-top: 20px;
}

.news-xq .content p {
	padding: 5px 0;
}

.news-xq .content img {
	max-width: 100%;
	width: 80%;
	margin: 0 auto;
}

.news-xq .xq-key {
	display: flex;
	align-items: center;
	padding: 20px 0;
}

.news-xq .xq-key span {
	padding-right: 4px;
	color: #0c8de0;
	font-family: "Roboto-m";
}

.hot-news {
	padding: 65px 0 70px;
	border-top: 10px solid #f5f5f5;
}

.hotNews {
	margin: 40px -15px 0;
	padding-bottom: 50px !important;
}

.hot-news .title h3 {
	font-size: 36px;
	color: #000;
	font-family: 'hg';
	text-transform: capitalize;
	line-height: 1;
}

.hotNews ul li {
	padding: 0 15px;
}

.hotNews ul li a {
	display: block;
	height: 100%;
	background: #fff;
}

.hotNews ul li a .pic {
	width: 100%;
	overflow: hidden;
}

.hotNews ul li a .pic img {
	object-fit: cover;
	width: 100%;
	height: 260px;
	transition: all 0.6s;
}

.hotNews ul li a .content {
	padding: 20px;
	background: #f5f5f5;
	transition: all 0.4s;
}

.hotNews ul li a .content h3 {
	font-size: 17px;
	color: #1a1a1a;
	font-family: roboto-m;
	overflow: hidden;
	text-overflow: ellipsis;
}

.hotNews ul li a .content p {
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	margin: 10px 0 16px;
	display: none;
}

.hotNews ul li a .details {
	color: #666;
	margin-top: 15px;
	transition: all 0.4s;
}

.hotNews ul li a .details i {
	font-size: 14px;
	color: #0c8de0;
	margin-right: 10px;
	transform: translateY(-1px);
}

.hotNews ul li:hover a {
	background: #0c8de0;
	border-color: #0c8de0;
}

.hotNews ul li:hover a .pic img {
	transform: scale(1.1);
}

.hotNews ul li:hover a .content {
	background: #fff;
	box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.1);
}

.hotNews ul li:hover a .content h3 {
	color: #0c8de0;
}

.hotNews .swiper-pagination {
	bottom: 0;
	width: 150px !important;
}

.hotNews .swiper-pagination span {
	width: 10px;
	height: 10px;
	background: #999;
	margin: 0 10px;
	opacity: 0.8;
}

.hotNews .swiper-pagination span.swiper-pagination-bullet-active {
	background: #0c8de0;
	opacity: 1;
}
/*关于我们*/
.about .container{
	max-width: 1600px;
}
.ny-about{
	padding: 60px 0;
}
.ny-about .container{
	display: flex;
	justify-content: space-between;
}
.ny-about .img{
	width: 50%;
}
.ny-about .txt{
	width: 45%;
}
.ny-about .txt .t h2{
	line-height: 1em;
	font-size: 32px;
	font-family: 'sy-b';
	color: #000;
}
.ny-about .txt .t p{
	margin-top: 20px;
	font-size: 22px;
	color: #0c8de0;
	font-family: 'sy-b';
}
.ny-about .txt .c{
	margin-top: 20px;
	color: #222;
}
.ny-about .txt .c p{
	margin-bottom: 15px;
}

.ny-culture{
	background: url("../images/cultureBg.jpg") no-repeat center;
	background-size: cover;
	background-attachment: fixed;
	padding: 100px 0px;
}
.ny-culture .container{
	display: flex;
	justify-content: space-between;
}

.ny-culture .tit h2{
	font-size: 46px;
	line-height: 1em;
	font-family: 'sy-b';
	color: #fff;
}
.ny-culture .tit p{
	margin-top: 10px;
	line-height: 1em;
	color: #fff;
}
.ny-culture .pic{
	width: 65%;
}
.ny-culture .pic ul{
	display: flex;
	justify-content: space-around;
}
.ny-culture .pic li{
	width: 31.3%;
	margin: 0 0 2% 2%;
	position: relative;
}
.ny-culture .pic li .img{
	overflow: hidden;
}
.ny-culture .pic li:hover .img img{
	transform: scale(1.1,1.1);
}
.ny-culture .pic li .txt{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	justify-content: end;
	padding: 30px;
}
.ny-culture .pic li .txt h2{
	color: #fff;
	font-size: 26px;
	line-height: 1em;
}
.ny-culture .pic li .txt p{
	color: #fff;
	margin-top: 10px;
	line-height: 1.6em;
}
.ny-honor{
	background:url("../images/bg03.jpg") repeat;
	padding: 60px 0px;
}
.ny-honor .tit{
	text-align: center;
}
.ny-honor .tit h2{
	font-size: 40px;
	font-family: 'sy-b';
	color: #000;
	line-height: 1em;
}
.ny-honor .tit p{
	margin-top: 10px;
	line-height: 1em;
	color: #999;
}
.ny-honor .ct{
	margin-top: 60px;
	position: relative;
}
.ny-honor .lib .img{
	border: 10px solid #eee;
	padding: 15px;
	background: #fff;
}
.ny-honor .lib .txt{
	margin-top: 10px;
	text-align: center;
	line-height: 1em;
}
.ny-honor .ct .swiper-button-next, .ny-honor .ct .swiper-button-prev {
	display: block;
	background:#666;
	margin: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	left: auto;
	right: auto;
	font-size: 20px;
	transition: all 0.4s;
}
.ny-honor .ct .swiper-button-next{
	right: -25px;
}
.ny-honor .ct .swiper-button-prev{
	left: -25px;
}

.ny-partner{
	padding: 100px 0px;
	background: url("../images/cooperateBg.jpg") no-repeat center;
	background-size: cover;
}
.ny-partner .tit{
	text-align: center;
}
.ny-partner .tit h2{
	font-size: 40px;
	font-family: 'sy-b';
	color: #fff;
	line-height: 1em;
}
.ny-partner .tit p{
	margin-top: 10px;
	line-height: 1em;
	color: #fff;
}
.ny-partner .ct{
	margin-top: 60px;
	position: relative;
}

.ny-partner .ct li a:after{ opacity:0; content:""; position:absolute;left:0;top:0;width:100%;height:100%;transform: translateY(-10px);background:#0c8de0; transition: all 0.5s}
.ny-partner .ct li:hover a:after{opacity:0.8;transform: translateY(0px);}
.ny-partner .ct .txt{
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	margin: auto;
	height: fit-content;
	text-align: center;
	color: #fff;
	font-size: 18px;
	transform: translateY(10px);
	transition: all 0.5s;
}
.ny-partner .ct li:hover .txt{
	transform: translateY(0px);
	opacity: 1;
}

.ny-partner .spot{position:initial; margin-top:40px}

.ny-partner .spot span{opacity: 1;width:10px;height:10px; background: #fff; margin: 0 4px;}

.ny-partner .spot span.swiper-pagination-bullet-active{background: #0c8de0;}


.ny-pzbz{
	margin-bottom: 40px;
}
.ny-pzbz .tit{
	margin-top: 60px;
	text-align: center;
}
.ny-pzbz .tit h2{
	font-size: 40px;
	color: #000;
	font-family: 'sy-b';
	line-height: 1em;
}
.ny-pzbz .tit p{
	margin-top: 10px;
	color: #666;
	line-height: 1em;
}

.ny-pzbz .ct{
	margin-top: 30px;
	position: relative;
}

.ny-pzbz .ct .swiper-button-next, .ny-pzbz .ct .swiper-button-prev {
	display: block;
	background:rgba(52,152,219,0.6);
	margin: 0;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	transform: translateY(-50%);
	left: auto;
	right: auto;
	font-size: 20px;
	transition: all 0.4s;
}
.ny-pzbz .ct .swiper-button-next:hover, .ny-pzbz .ct .swiper-button-prev:hover{
	background:rgba(52,152,219,1);

}
.ny-pzbz .ct .swiper-button-next{
	right: 0px;
}
.ny-pzbz .ct .swiper-button-prev{
	left: 0px;
}
.ny-pzbz .ct li{
	position: relative;
}
.ny-pzbz .ct li .txt{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 60px;
	line-height: 60px;
	background: rgba(51,51,51,0.6);
	color: #fff;
	text-align: center;
	font-size: 20px;
}


.ny-contact .tit{
	margin-top: 60px;
	text-align: center;
}
.ny-contact .tit h2{
	font-size: 40px;
	color: #000;
	font-family: 'sy-b';
	line-height: 1em;
}
.ny-contact .tit p{
	margin-top: 10px;
	color: #666;
	line-height: 1em;
}
.ny-contact .ct{
	margin-top: 60px;
	display: flex;
}
.ny-contact .ct .img{
	width: 50%;
}
.ny-contact .ct .img img{
	width: 100%;
}
.ny-contact .ct .txt{
	width: 50%;
	padding: 60px;
	background: #f7f7f7;
}
.ny-contact .ct .txt h2{
	font-size: 26px;
	color: #333;
	font-family: 'sy-b';
	line-height: 1em;
}
.ny-contact .ct .txt h3{
	margin-top: 30px;
	font-size: 18px;
	color: #666;
	line-height: 1em;
}
.ny-contact .ct .txt h4{
	margin-top: 30px;
	line-height: 1em;
	color: #e73001;
	font-family:'Roboto-m';
	font-size: 36px;
	margin-bottom: 30px;
}
.ny-contact .ct .txt p{
	color: #333;
	line-height:2em;
}
.ny-contact .map{
	margin: 60px 0px;
}
.ny-contact #mapContainer{
	height: 400px;
	width: 100%;
}
.searchPro {
	padding: 50px 0 80px;
}

.searchPro ul {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 0 -10px;
}

.searchPro ul li {
	width: 25%;
	padding: 0 10px;
	margin-top: 20px;
}

.searchPro ul li a {
	display: block;
	background: #f0f0f0;
}

.searchPro ul li .pic {
	overflow: hidden;
}

.searchPro ul li .pic img {
	mix-blend-mode: darken;
	object-position: center;
	width: 100%;
	transition: all 0.6s;
}

.searchPro ul li h3 {
	color: #1a1a1a;
	padding: 15px 20px;
	font-size: 17px;
	border-top: 1px solid #dbdbdb;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.searchPro ul li:hover .pic img {
	transform: scale(1.1);
}

.searchPro ul li:hover h3 {
	color: #fff;
	background: #0c8de0;
	border-color: #0c8de0;
}


.sub__nav {
	width:100%;
	height:80px;
	background:#f4f4f4;
	display: flex;
}
@media (max-width: 1180px) {
	.sub__nav {
		height:auto;
		background:none;
		padding:20px
	}
}
@media (max-width: 668px) {
	.sub__nav {
		padding-bottom:0
	}
}
.sub__nav-title {
	width:18%;
	font-size:30px;
	line-height:80px;
	background-color:#75ab22;
	font-family: sy-b;
	color:#fff;
	text-align:center
}
@media (max-width: 1440px) {
	.sub__nav-title {
		font-size:22px
	}
}
@media (max-width: 1180px) {
	.sub__nav-title {
		display:none
	}
}
.sub__nav-title .icon {
	vertical-align:top;
	margin-top:32px;
	color:#fff;
	width:16px;
	height:16px;
	display: inline-block;
	background: url("../images/subico.png") no-repeat center center;
	background-size: cover;
}
.sub__nav-list {
	width: 72%;
}
@media (max-width: 1180px) {
	.sub__nav-list {
		float:none;
		width: 100%;
	}
}
@media (max-width: 1180px) {
	.sub__nav-list ul {
		margin:0 -10px
	}
}
@media (max-width: 668px) {
	.sub__nav-list ul {
		margin:0 -5px
	}
}
.sub__nav-list ul li {
	display:block;
	float:left
}
@media (max-width: 1180px) {
	.sub__nav-list ul li {
		width:14.28%;
		padding:0 10px
	}
}
@media (max-width: 668px) {
	.sub__nav-list ul li {
		width:33.33%;
		margin-bottom:20px
	}
}
@media (max-width: 668px) {
	.sub__nav-list ul li {
		padding:0 5px;
		margin-bottom:10px
	}
}
.sub__nav-list ul li a {
	display:block;
	padding:0 40px;
	line-height:80px;
	font-size:18px;
	color:#333;
	-webkit-transition:all .5s;
	-o-transition:all .5s;
	transition:all .5s
}
@media (max-width: 1440px) {
	.sub__nav-list ul li a {
		font-size:16px
	}
}
@media (max-width: 1380px) {
	.sub__nav-list ul li a {
		padding:0 30px
	}
}
@media (max-width: 1180px) {
	.sub__nav-list ul li a {
		padding:0;
		width:100%;
		line-height:40px;
		background:#f4f4f4;
		text-align:center;
		font-size:14px
	}
}
.sub__nav-list ul li a:hover {
	color:#75ab22
}
.sub__nav-list ul li a.cur {
	background-color:#0c8de0;
	color:#fff
}
@media (max-width: 1440px) {
	.sub__nav-list ul li a.cur {
	}
}
@media (max-width: 1380px) {
	.sub__nav-list ul li a.cur {
	}
}
@media (max-width: 1180px) {
	.sub__nav-list ul li a.cur {
		padding:0
	}
}

.ny-pro{
	background: rgba(245, 245, 245, 1);
	padding: 40px 0px;
}
.ny-pro .container{
	display: flex;
	justify-content: space-between;
}
.ny-pro .pro-cate{
	width: 300px;
}
.sliTit {
	text-align: left;
	padding-left: 13px;
	border-left: 3px solid #51b435;
}
.sliTit h2{
	line-height: 1em;
	font-size: 36px;
	font-family: sy-b;
	color: #1a1a1a;
}
.sliTit p{
	color: #4c4c4c;
	font-size: 16px;
	line-height: 1;
	text-transform: uppercase;
	margin-top: 10px;
	font-family: Roboto;
}
.pro-cate ul{
	margin-top: 25px;
}

.pro-cate ul li{
	display: block;
	position: relative;
	background: #fff;
	margin-bottom: 2px;
}

.pro-cate ul li a{
	display: block;
	font-size: 16px;
	color: #1a1a1a;
	padding: 20px 0 20px 20px;
	transition: all 0.4s;
}

.pro-cate ul li span{
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 20px;
}

.pro-cate ul li:hover,.pro-cate ul li.on{
	background-color: #51b435;
}

.pro-cate ul li:hover a,.pro-cate ul li.on a{
	color: #fff;
}

.pro-cate ul li:hover span svg,.pro-cate ul li.on span svg{
	fill: #fff;
}

.pro-cate  .sliInfo{
	margin-top: 25px;
	background: #fff;
	padding: 30px;
	border-top: 3px solid #51b435;
}

.pro-cate  .sliInfo .div-img{
	border-bottom: 1px solid #dbdbdb;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction:column;
}
.pro-cate  .sliInfo .div-img img{
	width: 140px;
}
.pro-cate  .sliInfo .div-img p{
	display: block;
	font-size: 15px;
	color: #333;
	text-align: center;
	margin: 10px 0;
}

.pro-cate  .sliInfo .tel{
	display: block;
	color: #cc0000;
	font-size: 28px;
	font-family: got-b;
	text-align: center;
}

.pro-cate  .sliInfo .conBtn a{
	display: block;
	width: 100%;
	line-height: 45px;
	font-size: 15px;
	text-align: center;
	background: #51b435;
	transition: all 0.5s;
	color: #fff;
	border-radius: 50px;
	margin-top: 10px;
}

.pro-cate  .sliInfo .conBtn a:hover{
	background: #0c8de0;
}


.ny-pro .pro-list{
	width: calc(100% - 350px);
}

.ny-pro .pro-list ul{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -15px;
}

.ny-pro .pro-list ul li {
	width: calc(100% / 3);
	padding: 0 15px;
	margin-top: 30px;
}

.ny-pro .pro-list ul li .pic {
	background: #fff;
	overflow: hidden;
	position: relative;
	width: 100%;
	padding-top: 75%;
}

.ny-pro .pro-list ul li .pic img {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: contain;
	mix-blend-mode: darken;
	transition: all 0.6s;
}

.ny-pro .pro-list ul li:hover .pic img {
	transform: scale(1.1);
}

.ny-pro .pro-list ul li .title {
	font-size: 16px;
	line-height: 60px;
	height: 60px;
	padding: 0 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	position: relative;
	white-space: nowrap;
	width: 100%;
	text-align: center;
	transition: all 0.5s;
	z-index: 1;
	background: #fff;
	border-top: 1px solid #dbdbdb;
	color: #333;
}
.ny-pro .pro-list ul li .title:before{
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #51b435;
	z-index: -1;
	transform-origin: top;
	transform: perspective(300px) rotateX(-90deg);
	transition: all 0.5s;
}

.ny-pro .pro-list ul li a:hover .title:before{
	transform: perspective(300px) rotateX(0deg);
}

.ny-pro .pro-list ul li a:hover .title{
	color: #fff;
}
